This notebook shows our writing style transfer network based on cycle GAN. The network design to transfer positive sentences into negative ones and the opposite.
import torch
import csv
import nltk
import os
import pandas as pd
import plotly.offline as py
import plotly.graph_objs as go
import numpy as np
from nltk.corpus import stopwords
from tqdm import tqdm
from nltk.translate.bleu_score import sentence_bleu, SmoothingFunction
py.init_notebook_mode(connected=False)